2017-10-13 nginx禁止指定user_agent LNMPNginx 具体配置如下: 123456location / { if ($http_user_agent ~ 'curl|baidu|111111') { return 403; } } 把 ~ 改为 ~* 就是不区分大小写。 < nginx的301与302如何配置 nginx的负载均衡和反向代理 >